Tools, FAQ, Tutorials:
Use < Sign in '@(...)' Expressions
How to enter < sign in '@(...)' expressions?
✍: FYIcenter.com
< signs can be entered in '@(...)' expressions directly.
For example, the following "set-variable" policy statement uses a "@(...)" expression that contains a < sign as the Boolean operator:
<set-variable name="isTrue" value="@(1 < 2)" />
From XML syntax point of view, the above XML element is actually not valid.
But Azure.com has no problem take the above XML statement.
It could be that Azure.com is processing the @(...) expression first, before processing the XML element.
⇒ Use & Sign in '@(...)' Expressions
2017-11-12, ∼4194🔥, 0💬
Popular Posts:
How To Set session.gc_divisor Properly in PHP? As you know that session.gc_divisor is the frequency ...
How to read RSS validation errors at w3.org? If your RSS feed has errors, the RSS validator at w3.or...
How to build a test service operation to dump everything from the "context.Request" object in the re...
How to search for the first match of a regular expression using re.search()? The re.search() functio...
How To Read the Entire File into a Single String in PHP? If you have a file, and you want to read th...